Skip to content

Commit

Permalink
fix RPEL internal name
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob1 committed Aug 16, 2014
1 parent 1314567 commit 5ab1aa6
Showing 1 changed file with 6 additions and 6 deletions.
@@ -1,8 +1,8 @@
#include "simulation/Elements.h"
//#TPT-Directive ElementClass Element_REPL PT_REPL 160
Element_REPL::Element_REPL()
//#TPT-Directive ElementClass Element_RPEL PT_RPEL 160
Element_RPEL::Element_RPEL()
{
Identifier = "DEFAULT_PT_REPL";
Identifier = "DEFAULT_PT_RPEL";
Name = "RPEL";
Colour = PIXPACK(0x99CC00);
MenuVisible = 1;
Expand Down Expand Up @@ -46,8 +46,8 @@ Element_REPL::Element_REPL()

}

//#TPT-Directive ElementHeader Element_REPL static int update(UPDATE_FUNC_ARGS)
int Element_REPL::update(UPDATE_FUNC_ARGS)
//#TPT-Directive ElementHeader Element_RPEL static int update(UPDATE_FUNC_ARGS)
int Element_RPEL::update(UPDATE_FUNC_ARGS)
{
int r, rx, ry, ri;
for(ri = 0; ri <= 10; ri++)
Expand All @@ -70,4 +70,4 @@ int Element_REPL::update(UPDATE_FUNC_ARGS)
}


Element_REPL::~Element_REPL() {}
Element_RPEL::~Element_RPEL() {}

0 comments on commit 5ab1aa6

Please sign in to comment.