File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 28
28
#include " filefinder.h"
29
29
#include " filesystem_stream.h"
30
30
#include " player.h"
31
- #include " scene_save .h"
31
+ #include " scene .h"
32
32
#include " output.h"
33
33
34
34
void Emscripten_Interface::Reset () {
@@ -37,7 +37,7 @@ void Emscripten_Interface::Reset() {
37
37
38
38
bool Emscripten_Interface::DownloadSavegame (int slot) {
39
39
auto fs = FileFinder::Save ();
40
- std::string name = Scene_Save ::GetSaveFilename (fs, slot);
40
+ std::string name = FileFinder ::GetSaveFilename (fs, slot);
41
41
auto is = fs.OpenInputStream (name);
42
42
if (!is) {
43
43
return false ;
@@ -85,7 +85,7 @@ void Emscripten_Interface::TakeScreenshot() {
85
85
86
86
bool Emscripten_Interface_Private::UploadSavegameStep2 (int slot, int buffer_addr, int size) {
87
87
auto fs = FileFinder::Save ();
88
- std::string name = Scene_Save ::GetSaveFilename (fs, slot);
88
+ std::string name = FileFinder ::GetSaveFilename (fs, slot);
89
89
90
90
std::istream is (new Filesystem_Stream::InputMemoryStreamBufView (lcf::Span<uint8_t >(reinterpret_cast <uint8_t *>(buffer_addr), size)));
91
91
You can’t perform that action at this time.
0 commit comments