aboutsummaryrefslogtreecommitdiff
path: root/vis.c
diff options
context:
space:
mode:
Diffstat (limited to 'vis.c')
-rw-r--r--vis.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vis.c b/vis.c
index 8739cce..4cfa3fe 100644
--- a/vis.c
+++ b/vis.c
@@ -1565,7 +1565,7 @@ enum VisRegister vis_register_from(Vis *vis, char reg) {
return VIS_REG_INVALID;
}
-void vis_register_set(Vis *vis, enum VisRegister reg) {
+void vis_register(Vis *vis, enum VisRegister reg) {
if (VIS_REG_A <= reg && reg <= VIS_REG_Z) {
vis->action.reg = &vis->registers[VIS_REG_a + reg - VIS_REG_A];
vis->action.reg->append = true;