Skip to content

Commit

Permalink
Fix embedded noteskin filename casing
Browse files Browse the repository at this point in the history
Allows building on systems with case-sensitive filesystems.
  • Loading branch information
arcnmx committed Jul 15, 2024
1 parent fcd32ea commit b3d182d
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/game/noteskins/EmbedNoteskin1.as
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package game.noteskins

public class EmbedNoteskin1 extends EmbedNoteskinBase
{
[Embed(source = "Noteskin1.swf", mimeType = 'application/octet-stream')]
[Embed(source = "NoteSkin1.swf", mimeType = 'application/octet-stream')]
private static const EMBED_SWF:Class;

private static const ID:int = 1;
Expand Down
2 changes: 1 addition & 1 deletion src/game/noteskins/EmbedNoteskin10.as
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package game.noteskins

public class EmbedNoteskin10 extends EmbedNoteskinBase
{
[Embed(source = "Noteskin10.swf", mimeType = 'application/octet-stream')]
[Embed(source = "NoteSkin10.swf", mimeType = 'application/octet-stream')]
private static const EMBED_SWF:Class;

private static const ID:int = 10;
Expand Down
2 changes: 1 addition & 1 deletion src/game/noteskins/EmbedNoteskin2.as
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package game.noteskins

public class EmbedNoteskin2 extends EmbedNoteskinBase
{
[Embed(source = "Noteskin2.swf", mimeType = 'application/octet-stream')]
[Embed(source = "NoteSkin2.swf", mimeType = 'application/octet-stream')]
private static const EMBED_SWF:Class;

private static const ID:int = 2;
Expand Down
2 changes: 1 addition & 1 deletion src/game/noteskins/EmbedNoteskin3.as
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package game.noteskins

public class EmbedNoteskin3 extends EmbedNoteskinBase
{
[Embed(source = "Noteskin3.swf", mimeType = 'application/octet-stream')]
[Embed(source = "NoteSkin3.swf", mimeType = 'application/octet-stream')]
private static const EMBED_SWF:Class;

private static const ID:int = 3;
Expand Down
2 changes: 1 addition & 1 deletion src/game/noteskins/EmbedNoteskin4.as
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package game.noteskins

public class EmbedNoteskin4 extends EmbedNoteskinBase
{
[Embed(source = "Noteskin4.swf", mimeType = 'application/octet-stream')]
[Embed(source = "NoteSkin4.swf", mimeType = 'application/octet-stream')]
private static const EMBED_SWF:Class;

private static const ID:int = 4;
Expand Down
2 changes: 1 addition & 1 deletion src/game/noteskins/EmbedNoteskin5.as
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package game.noteskins

public class EmbedNoteskin5 extends EmbedNoteskinBase
{
[Embed(source = "Noteskin5.swf", mimeType = 'application/octet-stream')]
[Embed(source = "NoteSkin5.swf", mimeType = 'application/octet-stream')]
private static const EMBED_SWF:Class;

private static const ID:int = 5;
Expand Down
2 changes: 1 addition & 1 deletion src/game/noteskins/EmbedNoteskin6.as
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package game.noteskins

public class EmbedNoteskin6 extends EmbedNoteskinBase
{
[Embed(source = "Noteskin6.swf", mimeType = 'application/octet-stream')]
[Embed(source = "NoteSkin6.swf", mimeType = 'application/octet-stream')]
private static const EMBED_SWF:Class;

private static const ID:int = 6;
Expand Down
2 changes: 1 addition & 1 deletion src/game/noteskins/EmbedNoteskin7.as
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package game.noteskins

public class EmbedNoteskin7 extends EmbedNoteskinBase
{
[Embed(source = "Noteskin7.swf", mimeType = 'application/octet-stream')]
[Embed(source = "NoteSkin7.swf", mimeType = 'application/octet-stream')]
private static const EMBED_SWF:Class;

private static const ID:int = 7;
Expand Down
2 changes: 1 addition & 1 deletion src/game/noteskins/EmbedNoteskin8.as
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package game.noteskins

public class EmbedNoteskin8 extends EmbedNoteskinBase
{
[Embed(source = "Noteskin8.swf", mimeType = 'application/octet-stream')]
[Embed(source = "NoteSkin8.swf", mimeType = 'application/octet-stream')]
private static const EMBED_SWF:Class;

private static const ID:int = 8;
Expand Down
2 changes: 1 addition & 1 deletion src/game/noteskins/EmbedNoteskin9.as
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package game.noteskins

public class EmbedNoteskin9 extends EmbedNoteskinBase
{
[Embed(source = "Noteskin9.swf", mimeType = 'application/octet-stream')]
[Embed(source = "NoteSkin9.swf", mimeType = 'application/octet-stream')]
private static const EMBED_SWF:Class;

private static const ID:int = 9;
Expand Down

0 comments on commit b3d182d

Please sign in to comment.