mirror of
https://github.com/redstrate/Physis.git
synced 2025-04-25 13:57:45 +00:00
Oops, forgot to fix string_to_category
This commit is contained in:
parent
e1b3c78e0d
commit
6173ce422f
1 changed files with 4 additions and 4 deletions
|
@ -103,10 +103,10 @@ pub fn string_to_category(string: &str) -> Option<Category> {
|
|||
|
||||
match string {
|
||||
"common" => Some(Common),
|
||||
"bgcommon" => Some(BgCommon),
|
||||
"bg" => Some(Bg),
|
||||
"cut" => Some(Cut),
|
||||
"chara" => Some(Chara),
|
||||
"bgcommon" => Some(BackgroundCommon),
|
||||
"bg" => Some(Background),
|
||||
"cut" => Some(Cutscene),
|
||||
"chara" => Some(Character),
|
||||
"shader" => Some(Shader),
|
||||
"ui" => Some(UI),
|
||||
"sound" => Some(Sound),
|
||||
|
|
Loading…
Add table
Reference in a new issue