mirror of
https://github.com/geode-sdk/geode.git
synced 2025-03-31 07:10:28 -04:00
update changelog
This commit is contained in:
parent
a2b164af29
commit
9307bb1c42
3 changed files with 4 additions and 3 deletions
|
@ -2,6 +2,8 @@
|
|||
|
||||
## v2.0.0-beta.9
|
||||
* Make the index population async as well (3b3e174)
|
||||
* Run Android file callbacks on main thread (79d9184)
|
||||
* Implement launch arguments support (a2b164a)
|
||||
|
||||
## v2.0.0-beta.8
|
||||
* Fix TulipHook arm32 relocation of conditional branch - blame Dobby (69b9b2d)
|
||||
|
|
|
@ -740,7 +740,6 @@ void Loader::Impl::releaseNextMod() {
|
|||
// e.g. "--geode:arg=My spaced value"
|
||||
void Loader::Impl::initLaunchArguments() {
|
||||
auto launchStr = this->getLaunchCommand();
|
||||
log::debug("Found launch string: {}", launchStr);
|
||||
auto args = string::split(launchStr, " ");
|
||||
for (const auto& arg : args) {
|
||||
if (!arg.starts_with(LAUNCH_ARG_PREFIX)) {
|
||||
|
|
|
@ -35,6 +35,6 @@ void console::log(std::string const& msg, Severity severity) {
|
|||
}
|
||||
|
||||
void console::messageBox(char const* title, std::string const& info, Severity severity) {
|
||||
console::log(info, severity);
|
||||
// cocos2d::CCMessageBox(info.c_str(), title);
|
||||
// console::log(info, severity);
|
||||
cocos2d::CCMessageBox(info.c_str(), title);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue