diff options
| author | robojumper <robojumper@gmail.com> | 2025-03-02 20:45:04 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-02 14:45:04 -0500 |
| commit | 3461afd2b89de4db997726ce99c9c188677e03c4 (patch) | |
| tree | 8151e54423089dacd7b087a4df637325a019567d /src/m/m_dvd.cpp | |
| parent | 43c997570411832521a039e1e2087e8efef3a9a9 (diff) | |
Fix mDvd createOrDie symbol (#122)
Diffstat (limited to 'src/m/m_dvd.cpp')
| -rw-r--r-- | src/m/m_dvd.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/m/m_dvd.cpp b/src/m/m_dvd.cpp index 2b0d5bbb..cfee7660 100644 --- a/src/m/m_dvd.cpp +++ b/src/m/m_dvd.cpp @@ -345,7 +345,7 @@ mDvd_callback_c *mDvd_callback_c::create(dvdReadCallback cb, void *cbData) { } /** 802ef650 */ -mDvd_callback_c *mDvd_callback_c::createOrFail(dvdReadCallback cb, void *cbData) { +mDvd_callback_c *mDvd_callback_c::createOrDie(dvdReadCallback cb, void *cbData) { mDvd_callback_c *cmd = mDvd_callback_c::create(cb, cbData); while (!cmd) {} return cmd; @@ -573,7 +573,7 @@ mDvd_toMainRam_arc_c::create(EGG::Archive *arc, const char *path, int mountDirec /** 802efe90 */ mDvd_toMainRam_arc_c * -mDvd_toMainRam_arc_c::createOrFail(EGG::Archive *arc, const char *path, int mountDirection, EGG::Heap *heap) { +mDvd_toMainRam_arc_c::createOrDie(EGG::Archive *arc, const char *path, int mountDirection, EGG::Heap *heap) { mDvd_toMainRam_arc_c *cmd = mDvd_toMainRam_arc_c::create(arc, path, mountDirection, heap); while (!cmd) {} return cmd; @@ -613,7 +613,7 @@ mDvd_toMainRam_normal_c *mDvd_toMainRam_normal_c::create(const char *path, int m } /** 802f0030 */ -mDvd_toMainRam_normal_c *mDvd_toMainRam_normal_c::createOrFail(const char *path, int mountDirection, EGG::Heap *heap) { +mDvd_toMainRam_normal_c *mDvd_toMainRam_normal_c::createOrDie(const char *path, int mountDirection, EGG::Heap *heap) { mDvd_toMainRam_normal_c *cmd = mDvd_toMainRam_normal_c::create(path, mountDirection, heap); while (!cmd) {} return cmd; |
