summaryrefslogtreecommitdiff
path: root/reduced_system_layer.c
diff options
context:
space:
mode:
Diffstat (limited to 'reduced_system_layer.c')
-rwxr-xr-xreduced_system_layer.c33
1 files changed, 17 insertions, 16 deletions
diff --git a/reduced_system_layer.c b/reduced_system_layer.c
index e8fa43f..eee1093 100755
--- a/reduced_system_layer.c
+++ b/reduced_system_layer.c
@@ -99,7 +99,6 @@
#/ - Device selection
#/ - Networking
#/ - Windows sockets
-#/ - TCP
#/ - fetch - via libcurl on native platforms
#/ - Lattice-based cipher suite
#/ - dlopen - load libraries conditionally
@@ -619,17 +618,19 @@ typedef struct {
i32 frame_height;
f64 pixel_size;
i32 antialiasing_scale;
- b8 exact_resolution : 1;
- b8 graceful_shutdown : 1;
- b8 enable_clipboard_text : 1;
- b8 enable_clipboard_image : 1;
- b8 enable_clipboard_sound : 1;
-
- b8 done : 1;
- b8 has_focus : 1;
- b8 has_cursor : 1;
- b8 files_dragged : 1;
- b8 files_dropped : 1;
+
+ b8 exact_resolution : 1;
+ b8 graceful_shutdown : 1;
+ b8 enable_clipboard_text : 1;
+ b8 enable_clipboard_image : 1;
+ b8 enable_clipboard_sound : 1;
+
+ b8 done : 1;
+ b8 has_focus : 1;
+ b8 has_cursor : 1;
+ b8 files_dragged : 1;
+ b8 files_dropped : 1;
+
i32 real_width;
i32 real_height;
i32 cursor_x;
@@ -736,10 +737,10 @@ extern Platform g_platform;
Platform g_platform = {0};
-static i64 _sound_clock_time = 0;
-static i64 _sound_clock_carry = 0;
-static i64 _sound_position = 0;
-static i64 _frame_index = 0;
+static i64 _sound_clock_time = 0;
+static i64 _sound_clock_carry = 0;
+static i64 _sound_position = 0;
+static i64 _frame_index = 0;
static f32 _sound_ring [MAX_NUM_PRIMARY_SOUND_FRAMES] = {0};
static i64 _frame_duration [NUM_FRAMES_AVERAGED] = {0};