Fixy smixy
This commit is contained in:
parent
5db73b90e9
commit
4c5f882999
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
¨
|
|
||||||
int entry(int argc, char **argv) {
|
int entry(int argc, char **argv) {
|
||||||
|
|
||||||
window.title = STR("Minimal Game Example");
|
window.title = STR("Minimal Game Example");
|
||||||
|
@ -6,7 +6,7 @@ int entry(int argc, char **argv) {
|
||||||
window.height = 720;
|
window.height = 720;
|
||||||
window.x = 200;
|
window.x = 200;
|
||||||
window.y = 200;
|
window.y = 200;
|
||||||
window.clear_color = v4(1, 1, 1, 1);
|
window.clear_color = hex_to_rgba(0x6495EDff);
|
||||||
|
|
||||||
while (!window.should_close) {
|
while (!window.should_close) {
|
||||||
reset_temporary_storage();
|
reset_temporary_storage();
|
||||||
|
|
Reference in a new issue