Skip to content

Commit

Permalink
REVIEWED: Formatting, follow raylib coding conventions
Browse files Browse the repository at this point in the history
  • Loading branch information
raysan5 committed Jun 30, 2024
1 parent a805f46 commit 17cbc75
Show file tree
Hide file tree
Showing 12 changed files with 221 additions and 228 deletions.
27 changes: 27 additions & 0 deletions examples/examples.rc
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
GLFW_ICON ICON "raylib.ico"

1 VERSIONINFO
FILEVERSION 1,0,0,0
PRODUCTVERSION 1,0,0,0
BEGIN
BLOCK "StringFileInfo"
BEGIN
//BLOCK "080904E4" // English UK
BLOCK "040904E4" // English US
BEGIN
VALUE "CompanyName", "raylib technologies"
VALUE "FileDescription", "raylib example"
VALUE "FileVersion", "1.0"
VALUE "InternalName", "raylib-example"
VALUE "LegalCopyright", "(c) 2024 raylib technologies (@raylibtech)"
//VALUE "OriginalFilename", "raylib_app.exe"
VALUE "ProductName", "raylib-example"
VALUE "ProductVersion", "1.0"
END
END
BLOCK "VarFileInfo"
BEGIN
//VALUE "Translation", 0x809, 1252 // English UK
VALUE "Translation", 0x409, 1252 // English US
END
END
Binary file added examples/raylib.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion src/platforms/rcore_android.c
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ void PollInputEvents(void)
CORE.Input.Gamepad.previousButtonState[i][k] = CORE.Input.Gamepad.currentButtonState[i][k];
}
}

// Register previous touch states
for (int i = 0; i < MAX_TOUCH_POINTS; i++) CORE.Input.Touch.previousTouchState[i] = CORE.Input.Touch.currentTouchState[i];

Expand Down
Loading

0 comments on commit 17cbc75

Please sign in to comment.