Some inline + remove useless const&.

This commit is contained in:
StackZ
2020-11-06 02:10:58 +01:00
parent 689192e902
commit ddbea3ab36
35 changed files with 186 additions and 228 deletions
+2 -3
View File
@@ -33,10 +33,9 @@
#include <unistd.h>
bool exiting = false, is3DSX = false;
touchPosition touch;
C2D_SpriteSheet sprites;
int fadeAlpha = 0;
u32 old_time_limit, hDown = 0;
u32 old_time_limit;
/*
Set, if 3DSX or CIA.
@@ -111,7 +110,7 @@ Result Init::MainLoop() {
/* Loop as long as the status is not fullExit. */
while (aptMainLoop() && !fullExit) {
hidScanInput();
u32 hHeld = hidKeysHeld();
hHeld = hidKeysHeld();
hDown = hidKeysDown();
hRepeat = hidKeysDownRepeat();
hidTouchRead(&touch);