diff options
| author | realtradam <[email protected]> | 2023-06-16 01:18:13 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2023-06-16 01:18:13 -0400 |
| commit | a47cc44ef7191d03f8ca1b8d4e6b9dd34fba1807 (patch) | |
| tree | f7e358545f5043df20695d0cf51dcf8caa10cb12 /src/window/rodeo_window.c | |
| parent | 425516a9c53183179c43517f1b6501a790378a05 (diff) | |
| download | RodeoKit-a47cc44ef7191d03f8ca1b8d4e6b9dd34fba1807.tar.gz RodeoKit-a47cc44ef7191d03f8ca1b8d4e6b9dd34fba1807.zip | |
matrix math wrapper as well as various refactors for consistant and cleaner code
Diffstat (limited to 'src/window/rodeo_window.c')
| -rw-r--r-- | src/window/rodeo_window.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/window/rodeo_window.c b/src/window/rodeo_window.c index 59c7c18..40c1ccf 100644 --- a/src/window/rodeo_window.c +++ b/src/window/rodeo_window.c @@ -14,8 +14,8 @@ static irodeo_window_state_t irodeo_window_state = {0}; void rodeo_window_init( - uint16_t width, - uint16_t height, + uint32_t width, + uint32_t height, cstr title ) { @@ -58,8 +58,8 @@ rodeo_window_init( cstr_str(&title), SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, - width, - height, + (int32_t)width, + (int32_t)height, SDL_WINDOW_SHOWN //| SDL_WINDOW_RESIZABLE ); if(irodeo_window_state.window == NULL) |
