diff options
author | Max Horn | 2009-02-20 15:24:22 +0000 |
---|---|---|
committer | Max Horn | 2009-02-20 15:24:22 +0000 |
commit | a2aba2f18e7bac99f21d095b9ccaaa19924e2e46 (patch) | |
tree | 92dce39b3c56ae5ad52625c12d6ac5ec1c94dc2f /engines/sci/sfx/player/realtime.cpp | |
parent | c3ffac5e6245a20b3311cedf619e3a6f5e40b02c (diff) | |
download | scummvm-rg350-a2aba2f18e7bac99f21d095b9ccaaa19924e2e46.tar.gz scummvm-rg350-a2aba2f18e7bac99f21d095b9ccaaa19924e2e46.tar.bz2 scummvm-rg350-a2aba2f18e7bac99f21d095b9ccaaa19924e2e46.zip |
SCI: Renamed resource_mgr_t -> ResourceManager; added remark to 'the other resource manager' that it should be renamed to GraphicsManager or so
svn-id: r38592
Diffstat (limited to 'engines/sci/sfx/player/realtime.cpp')
-rw-r--r-- | engines/sci/sfx/player/realtime.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/sfx/player/realtime.cpp b/engines/sci/sfx/player/realtime.cpp index a46d8fdd09..5821d0b59d 100644 --- a/engines/sci/sfx/player/realtime.cpp +++ b/engines/sci/sfx/player/realtime.cpp @@ -152,7 +152,7 @@ rt_timer_callback(void) { } static resource_t * -find_patch(resource_mgr_t *resmgr, const char *seq_name, int patchfile) { +find_patch(ResourceManager *resmgr, const char *seq_name, int patchfile) { resource_t *res = NULL; if (patchfile != SFX_SEQ_PATCHFILE_NONE) { @@ -174,7 +174,7 @@ rt_set_option(char *name, char *value) { } static int -rt_init(resource_mgr_t *resmgr, int expected_latency) { +rt_init(ResourceManager *resmgr, int expected_latency) { resource_t *res = NULL, *res2 = NULL; void *seq_dev = NULL; GTimeVal foo = {0, 0}; |