mirror of
https://github.com/aseprite/aseprite.git
synced 2025-02-23 18:39:55 +00:00
Fix FSTREAM_PATH() for Unix-like systems
This commit is contained in:
parent
26b170e67f
commit
4940b2bf3e
@ -13,7 +13,7 @@
|
||||
#ifdef _WIN32
|
||||
#define FSTREAM_PATH(path) (base::from_utf8(path).c_str())
|
||||
#else
|
||||
#define FSTREAM_PATH(path) ((path).c_str())
|
||||
#define FSTREAM_PATH(path) (std::string(path).c_str())
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user