Recreated ABI comatiblity

This commit is contained in:
G3bE 2020-02-15 20:54:31 +10:00
parent 594ca73be4
commit 4f808f7da1
Failed to generate hash of commit
2 changed files with 218 additions and 217 deletions

View file

@ -14,7 +14,7 @@ pub fn main() anyerror!void
const screenWidth = 800;
const screenHeight = 450;
InitWindow(screenWidth, screenHeight, c"Rayzig test");
InitWindow(screenWidth, screenHeight, c"raylib-zig [core] example - basic window");
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------