put this in a js file and save it
put it at the bottom of your plugins
JavaScript:
Window_TitleCommand.prototype.makeCommandList = function(){
this.addCommand(TextManager.newGame, 'newGame');
this.addCommand(TextManager.continue_, 'continue', this.isContinueEnabled());
}
Edit:
Actually, I really hate editing any base game stuff, I'd always rather alias, so use this instead
JavaScript:
let alias_sp_TitleCommand_makeCommandList = Window_TitleCommand.prototype.makeCommandList
Window_TitleCommand.prototype.makeCommandList = function(){
alias_sp_TitleCommand_makeCommandList.call(this)
this.clearCommandList();
this.addCommand(TextManager.newGame, 'newGame');
this.addCommand(TextManager.continue_, 'continue', this.isContinueEnabled());
}
It's kind of a pointless change cause it would clear commands anyway, but it's not like it would hurt, either.