1. 28 Jul, 2011 1 commit
  2. 27 Jul, 2011 1 commit
  3. 26 Jul, 2011 3 commits
  4. 25 Jul, 2011 2 commits
  5. 22 Jul, 2011 2 commits
  6. 20 Jul, 2011 1 commit
  7. 14 Jul, 2011 1 commit
  8. 13 Jul, 2011 2 commits
  9. 12 Jul, 2011 2 commits
  10. 24 Jun, 2011 1 commit
  11. 21 Jun, 2011 1 commit
  12. 15 Jun, 2011 1 commit
  13. 10 Jun, 2011 2 commits
  14. 12 Jun, 2011 1 commit
  15. 06 Jun, 2011 1 commit
  16. 04 Jun, 2011 1 commit
  17. 03 Jun, 2011 1 commit
  18. 22 Apr, 2011 1 commit
    • Sam Lantinga's avatar
      Clarified SDL_GetWindowSurface() documentation · b6227343
      Sam Lantinga authored
      Matthew Orlando to Sam
      
      Someone asked in IRC whether they should free the surface from SDL_GetWindowSurface. The doc comment is a bit vague so i checked the code and revised the comment.
      b6227343
  19. 21 Apr, 2011 1 commit
  20. 20 Apr, 2011 2 commits
  21. 19 Apr, 2011 4 commits
  22. 18 Apr, 2011 1 commit
  23. 15 Apr, 2011 1 commit
  24. 08 Apr, 2011 2 commits
  25. 07 Apr, 2011 1 commit
  26. 06 Apr, 2011 1 commit
    • Sam Lantinga's avatar
      Fixed bug 1177 (testsdl ios crash) · 5c77470f
      Sam Lantinga authored
       Vittorio Giovara      2011-04-05 13:18:07 PDT
      
      The test application called "testsdl" inside the iOS project file crashes at
      launch time.
      The fix is trivial, removing the reference to MainWindow (as there are no Nibs
      included) from the Info.plist file.
      5c77470f
  27. 05 Apr, 2011 2 commits
    • Sam Lantinga's avatar
      Allow overriding the app delegate on iOS · 5e1ffb1c
      Sam Lantinga authored
      Vittorio G.  to Eric, Sam
      
      Actually this is much simpler than i thought, I just had to specify a
      class method to get the delegate name and then the category can
      override that method!
      I've attached the patch that enables this features: in my code i could
      remove my custom main() and simply add
      
      @implementation SDLUIKitDelegate (customDelegate)
      +(NSString *)getAppDelegateClassName {
         return @"HedgewarsAppDelegate";
      }
      @end
      
      I tested it and with the sdl demos it loads the normal
      SDLUIKitDelegate, while in my code it loads my HedgewarsAppDelegate!
      5e1ffb1c
    • Sam Lantinga's avatar
      0e83d1d4