remove the watermark
This commit is contained in:
parent
6b6947f680
commit
5752aec58c
|
@ -954,7 +954,6 @@ public class Options {
|
|||
DANCE_CIRLCE_IN_LAZY_SLIDERS ("Do circles in lazy sliders", "CircleInLazySlider", "Circle in hitcircle in lazy sliders", false),
|
||||
DANCE_HIDE_UI ("Hide all UI", "HideUI", ".", true),
|
||||
DANCE_ENABLE_SB ("Enable storyboard editor", "EnableStoryBoard", "Dance storyboard", false),
|
||||
DANCE_HIDE_WATERMARK ("Hide watermark", "HideWaterMark", "Hide the githublink in the top left corner of the playfield", false),
|
||||
PIPPI_ENABLE ("Pippi", "Pippi", "Move in circles like dancing pippi (osu! april fools joke 2016)", false),
|
||||
PIPPI_RADIUS_PERCENT ("Pippi radius", "PippiRad", "Radius of pippi, percentage of circle radius", 100, 0, 100) {
|
||||
@Override
|
||||
|
@ -1446,9 +1445,6 @@ public class Options {
|
|||
public static boolean isEnableSB() {
|
||||
return GameOption.DANCE_ENABLE_SB.getBooleanValue();
|
||||
}
|
||||
public static boolean isHideWM() {
|
||||
return GameOption.DANCE_HIDE_WATERMARK.getBooleanValue();
|
||||
}
|
||||
public static boolean isPippiEnabled() {
|
||||
return GameOption.PIPPI_ENABLE.getBooleanValue();
|
||||
}
|
||||
|
@ -2002,7 +1998,6 @@ public class Options {
|
|||
}
|
||||
}
|
||||
}
|
||||
GameOption.DANCE_HIDE_WATERMARK.setValue(false);
|
||||
} catch (IOException e) {
|
||||
String err = String.format("Failed to read file '%s'.", OPTIONS_FILE.getAbsolutePath());
|
||||
Log.error(err, e);
|
||||
|
|
|
@ -734,10 +734,6 @@ public class Game extends ComplexOpsuState {
|
|||
|
||||
UI.draw(g);
|
||||
|
||||
if (!Options.isHideWM()) {
|
||||
Fonts.SMALL.drawString(0.3f, 0.3f, "opsu!dance " + Updater.get().getCurrentVersion() + " by robin_be | https://github.com/yugecin/opsu-dance");
|
||||
}
|
||||
|
||||
super.render(g);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user