J :
* Next try
This commit is contained in:
+3
-3
@@ -521,10 +521,10 @@ BOOL CreateGLWindow(char* title, int width, int height, int bits, bool fullscree
|
|||||||
u32 JGEReadKey()
|
u32 JGEReadKey()
|
||||||
{
|
{
|
||||||
if (gKeyBuffer.empty()) return 0;
|
if (gKeyBuffer.empty()) return 0;
|
||||||
u32 val = gKeyBuffer.front().first;
|
pair<u32, u32> val = gKeyBuffer.front();
|
||||||
g_holds[val] = false;
|
g_holds[val.second] = false;
|
||||||
gKeyBuffer.pop();
|
gKeyBuffer.pop();
|
||||||
return val;
|
return val.first;
|
||||||
}
|
}
|
||||||
|
|
||||||
u32 JGEReadLocalKey()
|
u32 JGEReadLocalKey()
|
||||||
|
|||||||
Reference in New Issue
Block a user