Skip to content

Commit

Permalink
updated TODO and removed guess string from iphone example comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ColleagueRiley committed Nov 28, 2023
1 parent 8b43c2a commit 2ab097b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions TODO
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
- make sure all added functions work
- make sure all function names are the same
- make sure all functions are properly init'd
- fix issues with RGFW callbacks not working right
2 changes: 1 addition & 1 deletion examples/iphone/print.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ void init_console() {
NSDictionary* bundleInfo = NSBundle_infoDictionary(bundle); // Get the dictionary.
const char* bundle_identifier = NSDictionary_objectForKey(bundleInfo, "CFBundleIdentifier"); // Read from the dictionary to get the bundle identifier of the app.

//os_log_system = os_log_create(bundle_identifier, "connections"); // Set our logging to only focus on the bundle identifer of the app.
//os_log_system = os_log_create(bundle_identifier, ""); // Set our logging to only focus on the bundle identifer of the app.
#define printf(message, __VA_ARGS__...) os_log(os_log_system, message, ## __VA_ARGS__); // Define the new 'printf', as the old printf won't work anymore regardless.

// Release all of the garbage.
Expand Down

0 comments on commit 2ab097b

Please sign in to comment.