Minor tweaks const

This commit is contained in:
Ray 2022-03-22 18:45:41 +01:00
parent 40794da9e4
commit cb62cb675f
5 changed files with 9 additions and 8 deletions

View file

@ -27,8 +27,8 @@ int main(void)
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
const int screenWidth = 800;
const int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [shaders] example - hot reloading");