mirror of
https://github.com/geode-sdk/geode.git
synced 2025-02-17 08:41:15 -05:00
add ampersand support whoops
This commit is contained in:
parent
7d40c8188f
commit
b80efe0517
1 changed files with 5 additions and 0 deletions
|
@ -347,6 +347,11 @@ struct MDParser {
|
|||
|
||||
imgArguments.erase(imgArguments.begin()); //remove the image path
|
||||
|
||||
// Split by "&" to get arguments
|
||||
if (imgArguments.size() > 0) {
|
||||
imgArguments = utils::string::split(imgArguments.at(0), "&");
|
||||
}
|
||||
|
||||
float spriteScale = 1.0f;
|
||||
|
||||
for(std::string arg : imgArguments){
|
||||
|
|
Loading…
Reference in a new issue