Skip to content

Commit

Permalink
Fix incorrect sound file references (#24)
Browse files Browse the repository at this point in the history
Several sound files were referenced by wrong names. This was causing 
errors: "Tried to play a chunk with a bad frame"
  • Loading branch information
hexagonrecursion authored Jan 2, 2022
1 parent 390c21a commit 8c22424
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion sound/CC-Sounds/close_door/door_fence/close_door.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"id": "close_door",
"variant" : " t_chaingate_c ",
"volume": 100,
"files": [ "open_door/door_fence/close_door_fence.ogg" ]
"files": [ "close_door/door_fence/close_door_fence.ogg" ]
}
]
2 changes: 1 addition & 1 deletion sound/CC-Sounds/close_door/window/close_window.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"id" : "close_door",
"variant" : "t_window_domestic",
"volume" : 100,
"files" : [ "close_door/window/close_curtains.ogg" ]
"files" : [ "close_door/window/close_curtain.ogg" ]
},
{
"type": "sound_effect",
Expand Down
2 changes: 1 addition & 1 deletion sound/CC-Sounds/engine_start/v8/engine_start_v8.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"id": "engine_start",
"variant": "engine_v8",
"volume": 100,
"files": [ "engine_start/combustion/engine_start_v8.ogg" ]
"files": [ "engine_start/v8/engine_start_v8.ogg" ]
}
2 changes: 1 addition & 1 deletion sound/CC-Sounds/open_door/window/open_window.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
"id" : "open_door",
"variant" : "t_curtains",
"volume" : 80,
"files" : [ "open_door/window/open_curtains.ogg" ]
"files" : [ "open_door/window/open_curtain.ogg" ]
}
]
1 change: 0 additions & 1 deletion sound/CC-Sounds/plmove/plmove.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@
"plmove/walk_t_concrete_6.ogg",
"plmove/walk_t_concrete_7.ogg",
"plmove/walk_t_concrete_8.ogg",
"plmove/walk_t_concrete_9.ogg",
"plmove/walk_t_concrete_10.ogg"
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"id" : "vehicle_close",
"variant" : "v_curtain",
"volume" : 70,
"files" : [ "close_door/window/close_curtains.ogg" ]
"files" : [ "close_door/window/close_curtain.ogg" ]
}
2 changes: 1 addition & 1 deletion sound/CC-Sounds/vehicle_open/v_curtain/open_v_curtain.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"id" : "vehicle_open",
"variant" : "v_curtain",
"volume" : 70,
"files" : [ "open_door/window/open_curtains.ogg" ]
"files" : [ "open_door/window/open_curtain.ogg" ]
}

0 comments on commit 8c22424

Please sign in to comment.