debugger: Make prompt bold

This commit is contained in:
Michel Heily 2019-06-27 15:04:15 +03:00
parent 1d766e95de
commit fc6410b510

View file

@ -255,7 +255,7 @@ impl Debugger {
let mut rl = Editor::<()>::new();
rl.load_history(".rustboyadvance_history");
while self.running {
let readline = rl.readline(&format!("({}) >> ", "rustboyadvance-dbg".cyan()));
let readline = rl.readline(&format!("({}) >> ", "rustboyadvance-dbg".bold().cyan()));
match readline {
Ok(line) => {
if line.is_empty() {